home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Toolbox / Visual Basic Toolbox (P.I.E.)(1996).ISO / btrieve / isam / global.bas < prev    next >
Encoding:
BASIC Source File  |  1991-07-31  |  535 b   |  10 lines

  1. ' DECLARES FOR CALLING BTRIEVE-DLL
  2. Declare Function wbtrvinit Lib "wbtrcall.dll" (ByVal init$) As Integer
  3. Declare Sub wbtrvstop Lib "wbtrcall.dll" ()
  4. Declare Function btrcall Lib "wbtrcall.dll" (ByVal a%, ByVal b$, ByVal c$, d%, ByVal e$, ByVal f%, ByVal g%) As Integer
  5.  
  6. ' DECLARES F▄R ASCII-ANSI KONVERTIERUNG
  7. Declare Function ansitooem Lib "Keyboard" (ByVal lpAnsiStr As String, ByVal lpOemStr As String) As Integer
  8. Declare Function oemtoansi Lib "Keyboard" (ByVal lpOemStr As String, ByVal lpAnsiStr As String) As Integer
  9.  
  10.